home *** CD-ROM | disk | FTP | other *** search
- ' This simple macro adds text to the drawing
- '
- >SetStartPoint
- {
- }
- ' Un-remark these next 2 lines to make the input box appear in the upper
- ' left corner of the DesignCAD window, so it does not cover the drawing area.
- ' Sys(130) = 5
- ' Sys(131) = 5
- ' Get Distances from user
- Input "Enter Text", text$
- ' Get XY location of cursor
- getxy x1 y1 z1
- ' Add Text to the drawing
- >Text
- {
- <Gravity 0+Step, 0, 0
- <text [text$]
- }
- end
-
-